diff options
author | Fushihara <1039534+fushihara@users.noreply.github.com> | 2024-09-25 21:35:06 +0900 |
---|---|---|
committer | Fushihara <1039534+fushihara@users.noreply.github.com> | 2024-09-25 21:35:06 +0900 |
commit | 2b30ba0c4890c2a616c4b4cc8b0b3bc1bb9b3325 (patch) | |
tree | a618b0031741ec3b700e35d126613c365e3ae904 /src/app/article/all/[pageId]/page.tsx | |
parent | 6703973245610272c6cbd747f69f97a3f8f66613 (diff) |
記事のタグ、カテゴリの個数を表示するように追加
Diffstat (limited to 'src/app/article/all/[pageId]/page.tsx')
-rw-r--r-- | src/app/article/all/[pageId]/page.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/article/all/[pageId]/page.tsx b/src/app/article/all/[pageId]/page.tsx index e076aa0..622edbb 100644 --- a/src/app/article/all/[pageId]/page.tsx +++ b/src/app/article/all/[pageId]/page.tsx @@ -28,7 +28,7 @@ export default async function Page(context: PageType) { <div className="p-1 gap-16"> {pagenationElement(pageId, chunkdData.length)} <div className="text-right">全:{loadedData.articles.length}件</div> - {ArticleListElement(displayData)} + {ArticleListElement(displayData, loadedData.categoryTag)} {pagenationElement(pageId, chunkdData.length)} </div> ); |